-
Re: Regex to extract information from string
Hi Vkana, You can use the 'Extract with regular expression processor' in a Prepare recipe to get the desired values. From your example, a valid regex would be: ^(.*?)\sCEDEX\s?\d*$ You can use online…1 · -
Re: Documentation on job_types
Hi, The smart reconstruction option would match with a 'RECURSIVE_BUILD' type. The different available job_types can be found in the documentation. Here you will also find a code example of how to us…1 · -
Re: Custom Trigger Monthly Open Days
Hi, I suspect that by open day you actually mean business day? If so you can take advantage of pandas date_range method. In your custom python trigger you could input. from dataiku.scenario import Tr…2 · -
Re: How to terminate the dataiku flow if the output of any recipe is an empty dataset.
Hi, You can take advantage of scenarios to do so. One scenario step can be a 'Run Checks' on the particular dataset that could be empty. If successive steps are set so that they do not run if a prior…1 · -
Re: Joining partitioned and non-partitioned datasets
Hi, In the exercise, when changing in the recipe the partition dependency to 'all available' it stops propagating the partitioning to 'transactions_joined'. Thus it becomes a non-partitioned dataset …1 ·